home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Bitmap / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.1 KB  |  46 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Menus.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Author:                Henri Lamiraux
  7. //
  8. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef FWRESFIL_K
  13. #include "FWResFil.k"
  14. #endif
  15.  
  16. #ifndef DEFINES_K
  17. #include "Defines.k"
  18. #endif
  19.  
  20. #ifndef FWMENUS_FR
  21. #include "FWMenus.fr"
  22. #endif
  23.  
  24. //----------------------------------------------------------------------------
  25. //    Menus
  26. //----------------------------------------------------------------------------
  27.  
  28. resource FW_RMenuBar(kMenuBar)
  29. {
  30.     {
  31.         FW_RPullDownMenu
  32.         (
  33.             "Settings"
  34.             {
  35.                 FW_RTextItem(cHalfSize, FW_kNoKeyEquivalent, "50%"),
  36.                 FW_RTextItem(cRealSize, FW_kNoKeyEquivalent, "100%"),
  37.                 FW_RTextItem(cDoubleSize, FW_kNoKeyEquivalent, "200%"),
  38.                 FW_RTextItem(cFitToFrame, FW_kNoKeyEquivalent, "Scale to Frame"),
  39.                 FW_RSeparatorItem(),
  40.                 FW_RTextItem(cRequestFrame, FW_kNoKeyEquivalent, "Request Frame"),
  41.                 FW_RTextItem(cRemoveFrame, FW_kNoKeyEquivalent, "Remove Frame")
  42.             }
  43.         )
  44.     }
  45. };
  46.